home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / v cisle / acehtml / acehtmlfreeware.exe / scriptdef / Volume Equivalents.sd < prev    next >
INI File  |  2004-06-28  |  7KB  |  231 lines

  1. [SUBJECT]
  2. Description=Converts between different units of volume
  3. ImageIndex=-1
  4. Folder=Mathematics
  5.  
  6.  
  7. [BODY_TEXT]
  8. ;
  9. ;<!-- Cut-N-Paste JavaScript from ISN Toolbox 
  10. ;Copyright 1996, Infohiway Server Network.  Restricted use is hereby
  11. ;granted (both personal and commercial use OK so long as this code is 
  12. ;not *directly* sold), providing this notice is buried somewhere deep
  13. ;in your HTML document.  A link to http://www.infohiway.com is always 
  14. ;appreciated, but is absolutely and positively not necessary. :-) -->
  15. ;
  16. ;<script language="JavaScript">
  17. ;
  18. ;<!-- Hide JavaScript from Java-Impaired Browsers
  19. ;
  20. ;function initArray() {
  21. ;
  22. ;  this.length = initArray.arguments.length;
  23. ;
  24. ;  for (var i = 0; i < this.length; i++) {
  25. ;
  26. ;    this[i] = initArray.arguments[i];
  27. ;
  28. ;    }
  29. ;
  30. ;  }
  31. ;
  32. ;/* Please don't ask about this work-around. It works... We're sure arrays
  33. ;
  34. ;    will be better supported soon. */
  35. ;
  36. ;var isn05 = new initArray("4b","5b","8b","8b");
  37. ;
  38. ;isn05[0] = "~01~10.0005787~20.00002143~30.5541~40.01732~50.01488~60.004329~70.000465~80.01639~9";
  39. ;
  40. ;isn05[1] = "~01728~11~20.03704~3957.5~429.92~525.71~67.481~70.8036~828.32~9";
  41. ;
  42. ;isn05[2] = "~046656~127~21~325853~4807.9~5694.3~6202.2~721.70~8764.6~9";
  43. ;
  44. ;isn05[3] = "~01.805~10.001044~20.00003868~31~40.03125~50.02686~60.007812~70.0008392~80.02957~9";
  45. ;
  46. ;isn05[4] = "~057.75~10.03342~20.001238~332~41~50.8594~60.25~70.02686~80.9464~9";
  47. ;
  48. ;isn05[5] = "~067.20~10.03889~20.001440~337.24~41.164~51~60.2909~70.03125~81.101~9";
  49. ;
  50. ;isn05[6] = "~0231~10.1337~20.004951~3128~44~53.437~61~70.1074~83.785~9";
  51. ;
  52. ;isn05[7] = "~02150~11.244~20.04609~31192~437.24~532~69.309~71~835.24~9";
  53. ;
  54. ;isn05[8] = "~061.02~10.03531~20.001308~333.81~41.057~50.9081~60.2642~70.02838~81~9";
  55. ;
  56. ;
  57. ;
  58. ;
  59. ;
  60. ;function volCon() {
  61. ;
  62. ;  // First, get the variables checked by the user
  63. ;
  64. ;  for (var i = 0; i < 9; i++) {
  65. ;
  66. ;    if (document.isnform05.voli[i].checked) {
  67. ;
  68. ;      voli = i;
  69. ;
  70. ;      volinm = document.isnform05.voli[i].value;
  71. ;
  72. ;      }
  73. ;
  74. ;    }
  75. ;
  76. ;  for (var i = 0; i < 9; i++) {
  77. ;
  78. ;    if (document.isnform05.volo[i].checked) {
  79. ;
  80. ;      volo = i;
  81. ;
  82. ;      volonm = document.isnform05.volo[i].value;
  83. ;
  84. ;      }
  85. ;
  86. ;    }
  87. ;
  88. ;  // Now grab the numeric input by user and parse to be sure numeric
  89. ;
  90. ;  useri = document.isnform05.volinp.value;
  91. ;
  92. ;  if (useri == 0) {
  93. ;
  94. ;    useri = 1;
  95. ;
  96. ;    document.isnform05.volinp.value = useri;
  97. ;
  98. ;    }
  99. ;
  100. ;  mulstr = isn05[voli];
  101. ;
  102. ;  picker = "~" + volo;
  103. ;
  104. ;  ps = mulstr.indexOf(picker);
  105. ;
  106. ;  volo++;
  107. ;
  108. ;  picker = "~" + volo;
  109. ;
  110. ;  ps1 = mulstr.indexOf(picker);
  111. ;
  112. ;  mulstr = mulstr.substring((ps + 2),ps1);
  113. ;
  114. ;  ps = (useri * mulstr);
  115. ;
  116. ;  picker = "";
  117. ;
  118. ;  picker += ps;
  119. ;
  120. ;  ps1 = picker.indexOf(".");
  121. ;
  122. ;  if (ps1 > -1) {
  123. ;
  124. ;    // Correct for binary/floating point conversion error
  125. ;
  126. ;    ps = ps + .000001;
  127. ;
  128. ;    picker = "";
  129. ;
  130. ;    picker += ps;
  131. ;
  132. ;    ps2 = picker.indexOf("e");
  133. ;
  134. ;    if (ps2 < 0) {
  135. ;
  136. ;      picker = picker.substring(0,(ps1 + 6));
  137. ;
  138. ;      }
  139. ;
  140. ;    if (ps2 == 0 || ps2 > 0) {
  141. ;
  142. ;      ps3 = picker.indexOf("00000");
  143. ;
  144. ;      if (ps3 > 0) {
  145. ;
  146. ;        picker = picker.substring(0,ps3 + 1) + picker.substring(ps2,picker.length);
  147. ;
  148. ;        }
  149. ;
  150. ;      }
  151. ;
  152. ;    }
  153. ;
  154. ;  picker = useri + " " + volinm + " = " + picker + " " + volonm;
  155. ;
  156. ;  document.isnform05.volout.value = picker;
  157. ;
  158. ;  }
  159. ;
  160. ;// End Hiding -->
  161. ;
  162. ;
  163. ;
  164. ;</script>
  165. ;<form name="isnform05">
  166. ;<table border="1" width="486" summary="">
  167. ;
  168. ;<tr><td colspan="10" align="center"><font color="blue"><b>`Caption`</b></FONT></TD></tr>
  169. ;
  170. ;<tr><td colspan="10" valign="top"><font size="1"><b>First, type the number you wish converted here: </b>
  171. ;
  172. ;<input type="text" name="volinp" size="30" value="" onChange="volCon();"><br><b>Then, click radio buttons for desired conversion:</B></font></td></tr>
  173. ;
  174. ;<tr><td align="center"><font color="red" size="1"><b>From:</b></font></td>
  175. ;
  176. ;<td align="center" valign="top"><font size="1">Cubic Inches<br><input type="radio" name="voli" value="Cubic Inches" checked onClick = ""></FONT></TD>
  177. ;
  178. ;<td align="center" valign="top"><font size="1">Cubic Feet<br><input type="radio" name="voli" value="Cubic Feet" onClick = ""></FONT></TD>
  179. ;
  180. ;<td align="center" valign="top"><font size="1">Cubic Yards<br><input type="radio" name="voli" value="Cubic Yards" onClick = ""></FONT></TD>
  181. ;
  182. ;<td align="center" valign="top"><font size="1">US Fluid Ounces*<br><input type="radio" name="voli" value="Fluid Ounces" onClick = ""></FONT></TD>
  183. ;
  184. ;<td align="center" valign="top"><font size="1">US Liquid Quarts<br><input type="radio" name="voli" value="US Liquid Quarts" onClick = ""></FONT></TD>
  185. ;
  186. ;<td align="center" valign="top"><font size="1">US Dry Quarts<br><input type="radio" name="voli" value="US Dry Quarts" onClick = ""></FONT></TD>
  187. ;
  188. ;<td align="center" valign="top"><font size="1">US Gallons<br><input type="radio" name="voli" value="US Gallons" onClick = ""></FONT></TD>
  189. ;
  190. ;<td align="center" valign="top"><font size="1">US Bushels<br><input type="radio" name="voli" value="US Bushels" onClick = ""></FONT></TD>
  191. ;
  192. ;<td align="center" valign="top"><font size="1">Liters<br> <br><input type="radio" name="voli" value="Liters" onClick = ""></FONT></TD></tr>
  193. ;
  194. ;<tr><td align="center"><font color="red" size="1"><b>To:</b></FONT></TD>
  195. ;
  196. ;<td align="center" valign="top"><font size="1">Cubic Inches<br><input type="radio" name="volo" value="Cubic Inches" onClick = ""></FONT></TD>
  197. ;
  198. ;<td align="center" valign="top"><font size="1">Cubic Feet<br><input type="radio" name="volo" value="Cubic Feet" checked onClick = ""></FONT></TD>
  199. ;
  200. ;<td align="center" valign="top"><font size="1">Cubic Yards<br><input type="radio" name="volo" value="Cubic Yards" onClick = ""></FONT></TD>
  201. ;
  202. ;<td align="center" valign="top"><font size="1">US Fluid Ounces*<br><input type="radio" name="volo" value="Fluid Ounces" onClick = ""></FONT></TD>
  203. ;
  204. ;<td align="center" valign="top"><font size="1">US Liquid Quarts<br><input type="radio" name="volo" value="US Liquid Quarts" onClick = ""></FONT></TD>
  205. ;
  206. ;<td align="center" valign="top"><font size="1">US Dry Quarts<br><input type="radio" name="volo" value="US Dry Quarts" onClick = ""></FONT></TD>
  207. ;
  208. ;<td align="center" valign="top"><font size="1">US Gallons<br><input type="radio" name="volo" value="US Gallons" onClick = ""></FONT></TD>
  209. ;
  210. ;<td align="center" valign="top"><font size="1">US Bushels<br><input type="radio" name="volo" value="US Bushels" onClick = ""></FONT></TD>
  211. ;
  212. ;<td align="center" valign="top"><font size="1">Liters<br> <br><input type="radio" name="volo" value="Liters" onClick = ""></FONT></TD></tr>
  213. ;
  214. ;<tr><td colspan="10" align="center" valign="top"><font size="1"><input type="button" value=" Click for Conversion " onClick="volCon();"> 
  215. ;<input type="reset" value=" Reset Values "><br><input type="text" name="volout" size="60" value="" onClick="volCon();"><br>* Apothecary
  216. ;
  217. ;</FONT></TD></tr>
  218. ;
  219. ;</table></form>
  220. ;
  221. ;<p>
  222. ;
  223.  
  224.  
  225.  
  226. [`Caption`]
  227. Kind=S
  228. Value=Volume/Capacity Equivalents
  229.  
  230.  
  231.